home *** CD-ROM | disk | FTP | other *** search
- Declare Meldung$,Cr$
- Let Cr$=@Chr$(13)
- WindowStyle 16
- WindowTitle "HYPERTEXT"
-
- Boat:
-
- Cls
- LoadBmp "BOAT1.BMP",2,20;0
- UseBrush 1,@RGB(0,31,31)
- TextColor @RGB(0,0,31),-1
-
- RoundRect 110,16-190,36;10,10
- UseFont "System",1,3,0,0,1
- DrawText 116,19,"A"
- UseFont "System",1,3,0,0,0
- DrawText 124,19,"bout..."
-
- RoundRect 20,270-70,290;10,10
- UseFont "System",1,3,0,0,1
- DrawText 26,273,"E"
- UseFont "System",1,3,0,0,0
- DrawText 34,273,"xit"
-
- RoundRect 20,300-180,320;10,10
- UseFont "System",1,3,0,0,1
- DrawText 26,303,"M"
- UseFont "System",1,3,0,0,0
- DrawText 34,303,"echanical Systems"
-
- RoundRect 20,330-210,350;10,10
- UseFont "System",1,3,0,0,1
- DrawText 26,333,"D"
- UseFont "System",1,3,0,0,0
- DrawText 34,333,"eck & Cockit Framing"
-
- RoundRect 20,360-240,380;10,10
- UseFont "System",1,3,0,0,1
- DrawText 26,363,"H"
- UseFont "System",1,3,0,0,0
- DrawText 34,363,"ull Framing and Planking"
-
- TextColor 0,-1
- UseFont "Helv",18,0,0,0,0
- DrawText 300,363,"⌐1991 Roland G. Hⁿlsmann (Profan Version)"
- UseFont "System",1,3,0,0,0
-
- WaitForInput:
-
- WaitInput
- Case @KeyIn("Aa"):Goto "About"
- Case @KeyIn("Ee"):Goto "Ende"
- Case @KeyIn("Mm"):Goto "Mechanics"
- Case @KeyIn("Dd"):Goto "Cockpit"
- Case @KeyIn("Hh"):Goto "Frame"
- Case @KeyIn("Bb"):Goto "Boat"
- Case @Mouse(110,16-190,36):Goto "About"
- Case @Mouse(20,270-70,290):Goto "Ende"
- Case @Mouse(20,300-180,320):Goto "Mechanics"
- Case @Mouse(20,330-210,350):Goto "Cockpit"
- Case @Mouse(20,360-240,380):Goto "Frame"
- Case @Mouse(520,330-570,350):Goto "Boat"
- Goto "WaitForInput"
-
- Ende:
-
- Cls
- End
-
- About:
-
- Let Meldung$=@Add$("IRENE",Cr$)
- Let Meldung$=@Add$(Meldung$,\
- "Designed by John L. Hacker")
- Let Meldung$=@Add$(Meldung$,Cr$)
- Let Meldung$=@Add$(Meldung$,"Length: 28 feet")
- Let Meldung$=@Add$(Meldung$,Cr$)
- Let Meldung$=@Add$(Meldung$,"Draft: 2 feet")
- Let Meldung$=@Add$(Meldung$,Cr$)
- Let Meldung$=@Add$(Meldung$,"Beam: 6 feet 8 inches")
- Let Meldung$=@Add$(Meldung$,Cr$)
- Let Meldung$=@Add$(Meldung$,"Speed: 22 mph")
- MessageBox Meldung$,"About...",64
- Goto "WaitForInput"
-
- Mechanics:
-
- Cls
- LoadBmp "MECH1.BMP",2,20;0
- UseBrush 1,@RGB(0,31,31)
- TextColor @RGB(0,0,31),-1
-
- RoundRect 520,330-570,350;10,10
- UseFont "System",1,3,0,0,1
- DrawText 526,333,"B"
- UseFont "System",1,3,0,0,0
- DrawText 534,333,"ack"
-
- TextColor 0,-1
- UseFont "Helv",18,0,0,0,0
- DrawText 300,363,"⌐1991 Roland G. Hⁿlsmann \
- (Profan Version)"
- UseFont "System",1,3,0,0,0
-
- Goto "WaitForInput"
-
- Cockpit:
-
- Cls
- UseBrush 1,@RGB(0,31,31)
- LoadBmp "COCKPIT1.BMP",2,20;0
- TextColor @RGB(0,0,31),-1
-
- RoundRect 520,330-570,350;10,10
- UseFont "System",1,3,0,0,1
- DrawText 526,333,"B"
- UseFont "System",1,3,0,0,0
- DrawText 534,333,"ack"
-
- TextColor 0,-1
- UseFont "Helv",18,0,0,0,0
- DrawText 300,363,"⌐1991 Roland G. Hⁿlsmann \
- (Profan Version)"
- UseFont "System",1,3,0,0,0
-
- Goto "WaitForInput"
-
- Frame:
-
- Cls
- UseBrush 1,@RGB(0,31,31)
- LoadBmp "FRAME1.BMP",0,0;0
- TextColor @RGB(0,0,31),-1
-
- RoundRect 520,330-570,350;10,10
- UseFont "System",1,3,0,0,1
- DrawText 526,333,"B"
- UseFont "System",1,3,0,0,0
- DrawText 534,333,"ack"
-
- TextColor 0,-1
- UseFont "Helv",18,0,0,0,0
- DrawText 300,363,"⌐1991 Roland G. Hⁿlsmann \
- (Profan Version)"
- UseFont "System",1,3,0,0,0
-
- Goto "WaitForInput"
-
-
-
-
-
-
-
-
-
-
-
-
-
-